home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ für Kids
/
C++ for kids.iso
/
Buch
/
hangx.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-30
|
1KB
|
34 lines
//---------------------------------------------------------------------------
#ifndef hangyH
#define hangyH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-verwaltete Komponenten
TButton *ReadyButton;
TButton *NewButton;
TPanel *Panel1;
TPanel *Panel2;
TImage *Image1;
TLabel *Label1;
void __fastcall FormCreate(TObject *Sender);
void __fastcall NewButtonClick(TObject *Sender);
void __fastcall FormKeyPress(TObject *Sender, char &Key);
void __fastcall ReadyButtonClick(TObject *Sender);
private: // Benutzer-Deklarationen
public: // Benutzer-Deklarationen
void __fastcall SetZero (void);
void __fastcall DrawHangMan(void);
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TForm1 *Form1;
//---------------------------------------------------------------------------
#endif